home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / schools / _transform / oddments / tvar < prev    next >
Text File  |  1991-10-13  |  2KB  |  42 lines

  1. Surjit Lidder
  2.  
  3.  
  4. List of variables: 
  5.  
  6.  
  7. Line 10 :   REM>!Runimage 
  8.                              used so when ever I want to save the       
  9.             programme all I have to do is type SAVE.
  10.  
  11. Line 250 :  OSCLI("SLOAD !Transform.spritefile")
  12.                              This is the 'Operating System Command 
  13.             Line' and here I am loading the sprites from 'Spritefile'
  14.             into the SYSTEM SPRITES block of memory.
  15.  
  16. Line 310 :  Here the sprite "titletop" is chosen (SChoose) and plotted
  17.             at co-ordinates 200,740.
  18.             But with the help of +(SIN(TIME/40)*300), I am able to 
  19.             move the sprite freely around the screen. This is because
  20.             constantly TIME (time from which the computer was 
  21.             switched on) is changing and so are the co-ordinates at
  22.             which the sprite is being plotted. 
  23.             PLOT&ED just access the sprites from the block of system
  24.             sprites memory.
  25.  
  26. Lines 900-950 &  
  27.        1050-1110  
  28.           : File Handling is used and a single byte (BGET) is taken
  29.            from the text file (which was produced by !Edit), and then
  30.            displayed on the screen using the VDU command.
  31.            This process is repeated until the end of the file (EOF) is
  32.            reached.
  33.  
  34. Line 1560 : STRING$(24,"-") produces "-", twenty-four times.
  35.  
  36. Line 2180 : The whole screen is made the text window again,
  37.              the screen is cleared, 
  38.              the cursor is turned off,
  39.              printing is now enabled to be done at the Graphics 
  40.              cursor (VDU 5).
  41.  
  42.